github.com/klauspost/compress/zstd.decoderOptions.concurrent (field)
12 uses
github.com/klauspost/compress/zstd (current package)
decoder.go#L107: d.decoders = make(chan *blockDec, d.o.concurrent)
decoder.go#L108: for i := 0; i < d.o.concurrent; i++ {
decoder.go#L223: if d.o.concurrent == 1 {
decoder.go#L227: d.current.output = make(chan decodeOutput, d.o.concurrent)
decoder.go#L659: var seqDecode = make(chan *blockDec, d.o.concurrent)
decoder.go#L660: var seqExecute = make(chan *blockDec, d.o.concurrent)
decoder_options.go#L20: concurrent int
decoder_options.go#L34: concurrent: runtime.GOMAXPROCS(0),
decoder_options.go#L38: if o.concurrent > 4 {
decoder_options.go#L39: o.concurrent = 4
decoder_options.go#L77: if o.resetOpt && newVal != o.concurrent {
decoder_options.go#L80: o.concurrent = newVal
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |